keywords: task properties, range, locate, SQL where, expression, DB SQL
Name in Migrated Code: Where.Add
Location in Migrated Code: InitializeDataView
The SQL Where DB SQL allowed the developer to add an SQL Where statement using columns from the Data View.
void InitializeDataView()
{
From = Orders;
Where.Add("{0} in (10248,10252,10255)", Orders.OrderID);
}